home *** CD-ROM | disk | FTP | other *** search
/ The Arsenal Files 8 / The Arsenal Files Collection #8 (Arsenal Computer) (1996).ISO / prg_casm / snpd9611.zip / STRECPY.C < prev    next >
C/C++ Source or Header  |  1996-11-24  |  695b  |  24 lines

  1. .I 0 2
  2. /* +++Date last modified: 24-Nov-1996 */
  3.  
  4. .I 7 7
  5. **
  6. **  NOTE: The name of this funtion violates ANSI/ISO 9899:1990 sec. 7.1.3,
  7. **        but this violation seems preferable to either violating sec. 7.13.8
  8. **        or coming up with some hideous mixed-case or underscore infested
  9. **        naming. Also, many SNIPPETS str---() functions duplicate existing
  10. **        functions which are supported by various vendors, so the naming
  11. **        violation may be required for portability.
  12. .I 13 5
  13. #if defined(__cplusplus) && __cplusplus
  14.  extern "C" {
  15. #endif
  16.  
  17. char *strecpy(char *target, const char *src)
  18. .D 14 1
  19. .I 23 4
  20.  
  21. #if defined(__cplusplus) && __cplusplus
  22.  }
  23. #endif
  24.